home *** CD-ROM | disk | FTP | other *** search
- /*
- * (c) Copyright 1992 by Panagiotis Tsirigotis
- * All rights reserved. The file named COPYRIGHT specifies the terms
- * and conditions for redistribution.
- */
-
- #ifndef CONF_H
- #define CONF_H
-
- /*
- * $Id: conf.h,v 5.1 1992/10/31 23:58:48 panos Exp $
- */
-
- #include "pset.h"
-
- #include "service.h"
-
- struct configuration
- {
- pset_h services ;
- struct service *defaults ;
- } ;
-
- status_e get_configuration() ;
- void free_configuration() ;
- void dump_current_configuration() ;
-
- #endif /* CONF_H */
-
-